home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 1
/
Wayzata's Best of Shareware for PC-Windows - Release 1 - Wayzata Technology (1993).iso
/
mac
/
DOS
/
TELECOMM
/
PCCP047
/
CCODES.C
< prev
next >
Wrap
C/C++ Source or Header
|
1992-04-29
|
399b
|
32 lines
#include<stdio.h>
#include<graph.h>
main()
{
char str[16];
int i;
for(i=0;i<256;++i)
{
if(!(i%16))
{
sprintf(str, "\n");
_outtext(str);
}
else
{
sprintf(str, " ");
_outtext(str);
}
if((i!=10)&&(i!=13))
{
sprintf(str, "%02x>%c", i, i);
_outtext(str);
}
else
{
sprintf(str, " ");
_outtext(str);
}
}
}